List Project Resources Endpoint
Overview
This endpoint allows users to retrieve a list of resources of a specific type for a project.
Request Details
HTTP Method
GET
Route
/api/users/[user_id]/projects/[project_id]/resources/[resource_type]
Route Parameters
Parameter | Type | Required | Description |
---|---|---|---|
user_id | integer | Yes | The ID of the authenticated user |
project_id | integer | Yes | The ID of the project |
resource_type | string | Yes | Type of resource (e.g., 'user-files', 'template-collections', 'github-installations', 'chat-conversations') |
Headers
Header | Value | Required | Description |
---|---|---|---|
Accept | application/json | Yes | Specifies the response format |
Cookie | neptun-session | Yes | Session authentication cookie |
Query Parameters
Query parameters vary depending on the resource type:
For user-files
No additional parameters
For template-collections
No additional parameters
For github-installations
No additional parameters
For chat-conversations
No additional parameters
Response Format
Response Status Codes
Status Code | Description |
---|---|
200 | Successfully retrieved resources |
400 | Bad request (invalid parameters) |
401 | Unauthorized (invalid or missing session) |
403 | Forbidden (user_id mismatch) |
404 | Project or resources not found |
500 | Server error |
Success Response (200 OK)
Response varies based on the resource type:
For user files
[
{
"id": 123,
"title": "My File",
"text": "File content",
"language": "typescript",
"extension": "ts",
"created_at": "2025-02-16T17:42:11.000Z",
"updated_at": "2025-02-16T17:42:11.000Z",
"neptun_user_id": 456
}
]
For template collections
[
{
"id": 123,
"name": "My Template Collection",
"description": "Collection description",
"is_shared": false,
"share_uuid": "550e8400-e29b-41d4-a716-446655440000",
"created_at": "2025-02-16T17:42:11.000Z",
"updated_at": "2025-02-16T17:42:11.000Z",
"neptun_user_id": 456
}
]